home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_d / dbet103e.zip / DBEGRPH.DFM / DBEGRPH.txt
Text File  |  1996-01-29  |  3KB  |  152 lines

  1. object GraphicForm: TGraphicForm
  2.   Left = 248
  3.   Top = 104
  4.   Width = 385
  5.   Height = 334
  6.   BorderIcons = [biSystemMenu, biMaximize]
  7.   Caption = 'GraphicForm'
  8.   Font.Color = clBlack
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   KeyPreview = True
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   Scaled = False
  16.   OnCreate = FormCreate
  17.   OnKeyDown = FormKeyDown
  18.   OnResize = FormResize
  19.   TextHeight = 13
  20.   object Panel1: TPanel
  21.     Left = 0
  22.     Top = 0
  23.     Width = 377
  24.     Height = 264
  25.     Align = alClient
  26.     BevelOuter = bvNone
  27.     BorderWidth = 5
  28.     TabOrder = 0
  29.     object ScrollBox: TScrollBox
  30.       Left = 5
  31.       Top = 5
  32.       Width = 367
  33.       Height = 254
  34.       Align = alClient
  35.       Color = clWhite
  36.       ParentColor = False
  37.       PopupMenu = PopupMenu1
  38.       TabOrder = 0
  39.       object Image: TImage
  40.         Left = 0
  41.         Top = 0
  42.         Width = 321
  43.         Height = 208
  44.         PopupMenu = PopupMenu1
  45.         Stretch = True
  46.       end
  47.     end
  48.   end
  49.   object Panel2: TPanel
  50.     Left = 0
  51.     Top = 264
  52.     Width = 377
  53.     Height = 43
  54.     Align = alBottom
  55.     BevelOuter = bvNone
  56.     TabOrder = 1
  57.     object UserBtn: TButton
  58.       Left = 4
  59.       Top = 6
  60.       Width = 80
  61.       Height = 30
  62.       Caption = 'UserBtn'
  63.       TabOrder = 0
  64.       Visible = False
  65.     end
  66.     object OKBtn: TBitBtn
  67.       Left = 136
  68.       Top = 6
  69.       Width = 80
  70.       Height = 30
  71.       Caption = '&OK'
  72.       TabOrder = 1
  73.       Kind = bkOK
  74.     end
  75.     object CancelBtn: TBitBtn
  76.       Left = 220
  77.       Top = 6
  78.       Width = 80
  79.       Height = 30
  80.       TabOrder = 2
  81.       Kind = bkCancel
  82.     end
  83.   end
  84.   object OpenDlg: TOpenDialog
  85.     Filter = 'Windows Bitmaps|*.BMP'
  86.     Options = [ofPathMustExist, ofFileMustExist]
  87.     Left = 258
  88.     Top = 18
  89.   end
  90.   object SaveDlg: TSaveDialog
  91.     DefaultExt = 'BMP'
  92.     Filter = 'Windows Bitmap|*.BMP'
  93.     Options = [ofOverwritePrompt, ofPathMustExist]
  94.     Left = 291
  95.     Top = 17
  96.   end
  97.   object PopupMenu1: TPopupMenu
  98.     Left = 226
  99.     Top = 18
  100.     object N25: TMenuItem
  101.       Caption = '25%'
  102.       OnClick = N25Click
  103.     end
  104.     object N50: TMenuItem
  105.       Caption = '50%'
  106.       OnClick = N25Click
  107.     end
  108.     object N75: TMenuItem
  109.       Caption = '75%'
  110.       OnClick = N25Click
  111.     end
  112.     object N100: TMenuItem
  113.       Caption = '100%'
  114.       Checked = True
  115.       OnClick = N25Click
  116.     end
  117.     object N125: TMenuItem
  118.       Caption = '125%'
  119.       OnClick = N25Click
  120.     end
  121.     object N150: TMenuItem
  122.       Caption = '150%'
  123.       OnClick = N25Click
  124.     end
  125.     object N175: TMenuItem
  126.       Caption = '175%'
  127.       OnClick = N25Click
  128.     end
  129.     object N200: TMenuItem
  130.       Caption = '200%'
  131.       OnClick = N25Click
  132.     end
  133.     object CopyToClip: TMenuItem
  134.       Break = mbBarBreak
  135.       Caption = 'Kopieren'
  136.       OnClick = CopyToClipClick
  137.     end
  138.     object InsertFromClip: TMenuItem
  139.       Caption = 'Einf∩┐╜gen'
  140.       OnClick = InsertFromClipClick
  141.     end
  142.     object Laden1: TMenuItem
  143.       Caption = 'Laden'
  144.       OnClick = Laden1Click
  145.     end
  146.     object Speichern1: TMenuItem
  147.       Caption = 'Speichern'
  148.       OnClick = Speichern1Click
  149.     end
  150.   end
  151. end
  152.